19 lines
520 B
C#
19 lines
520 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace DeviceSim.DataObjects.Models
|
|||
|
{
|
|||
|
public partial class Devices
|
|||
|
{
|
|||
|
public string Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public byte[] Version { get; set; }
|
|||
|
public DateTimeOffset CreatedAt { get; set; }
|
|||
|
public DateTimeOffset? UpdatedAt { get; set; }
|
|||
|
public bool Deleted { get; set; }
|
|||
|
public string UserProfileId { get; set; }
|
|||
|
|
|||
|
public UserProfiles UserProfile { get; set; }
|
|||
|
}
|
|||
|
}
|