Files
ERP_Auth_Service/DTOs/Tute/UpdateTuteItemRequest.cs
T
Dhananjaya99 de7b40a147 ini
2026-07-08 11:11:50 +05:30

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; }
}
}