mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
10 lines
239 B
C#
10 lines
239 B
C#
namespace Daybreak.Shared.Models.UMod;
|
|
|
|
public sealed class UModEntry
|
|
{
|
|
public string? Name { get; init; }
|
|
public string? PathToFile { get; init; }
|
|
public bool Imported { get; init; }
|
|
public bool Enabled { get; set; }
|
|
}
|