10 lines
220 B
C#
10 lines
220 B
C#
namespace AuthHex.DTOs.Tute
|
|
{
|
|
public class UpdateTuteItemRequest
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; } = string.Empty;
|
|
public string? Notes { get; set; }
|
|
}
|
|
}
|