15 lines
348 B
C#
15 lines
348 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CodeLiturgy.Data.Application
|
|
{
|
|
|
|
public class ApplicationDeviceCreate
|
|
{
|
|
[Required] public string Uuid;
|
|
public string Languages { get; set; }
|
|
public string UserAgent { get; set; }
|
|
public OperatingSystemType OperatingSystemType { get; set; }
|
|
}
|
|
}
|
|
|