9 lines
209 B
C#
Raw Normal View History

namespace MCCFMD.Serialization.Modpack
{
public struct File
{
public string ProjectId { get; set; }
public string FileId { get; set; }
public bool Required { get; set; }
}
}