Wonky.Client/Wonky.Entity/DTO/ShortMessageModel.cs

12 lines
322 B
C#
Raw Normal View History

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