CodeLiturgy.Dashboard/CodeLiturgy.Data.Application/ApplicationDevice/ApplicationDeviceCreate.cs

15 lines
345 B
C#
Raw Normal View History

2022-09-17 22:13:35 +03:00
using System.ComponentModel.DataAnnotations;
namespace BlueWest.Data.Application
{
public class ApplicationDeviceCreate
{
[Required] public string Uuid;
public string Languages { get; set; }
public string UserAgent { get; set; }
public OperatingSystemType OperatingSystemType { get; set; }
}
}