mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
25 lines
543 B
C#
25 lines
543 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Remotely.Shared.Models
|
|
{
|
|
public class DeviceGroup
|
|
{
|
|
[StringLength(200)]
|
|
public string Name { get; set; }
|
|
|
|
[Key]
|
|
public string ID { get; set; }
|
|
|
|
public virtual List<Device> Devices { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public Organization Organization { get; set; }
|
|
|
|
public string OrganizationID { get; set; }
|
|
}
|
|
}
|