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