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

15 lines
348 B
C#
Raw Permalink Normal View History

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