15 lines
345 B
C#
15 lines
345 B
C#
|
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; }
|
||
|
}
|
||
|
}
|
||
|
|