9 lines
210 B
C#
Raw Permalink Normal View History

2022-05-18 22:12:43 -05:00
namespace CFUtils.Serialization.Modpack
{
public struct File
{
public string ProjectId { get; set; }
public string FileId { get; set; }
public bool Required { get; set; }
}
}