16 lines
459 B
C#
16 lines
459 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace LANCommander.SDK.Models
|
|
{
|
|
public class Redistributable : BaseModel
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Notes { get; set; }
|
|
public DateTime ReleasedOn { get; set; }
|
|
public virtual IEnumerable<Archive> Archives { get; set; }
|
|
public virtual IEnumerable<Script> Scripts { get; set; }
|
|
}
|
|
}
|