LANCommander/LANCommander.SDK/Models/Tool.cs

17 lines
496 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class Tool : BaseModel
{
public string Name { get; set; }
public string Description { get; set; }
public string Notes { get; set; }
public bool AlwaysInstall { get; set; }
public DateTime ReleasedOn { get; set; }
public virtual IEnumerable<Archive> Archives { get; set; }
public virtual IEnumerable<Script> Scripts { get; set; }
}
}