Wonky.Client/Wonky.Entity/DTO/ShortMessage.cs

12 lines
317 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace Wonky.Entity.DTO;
2023-03-19 10:05:44 +01:00
public class ShortMessage
{
[Required] [MaxLength(11)] public string From { get; set; } = "";
[Required] [MaxLength(1000)] public string To { get; set; } = "";
[Required] [MaxLength(100)] public string Body { get; set; } = "";
}