9 lines
259 B
C#
9 lines
259 B
C#
|
|
using LANCommander.Server.Settings.Enums;
|
||
|
|
|
||
|
|
namespace LANCommander.Server.Settings.Models;
|
||
|
|
|
||
|
|
public class UpdateSettings
|
||
|
|
{
|
||
|
|
public string StoragePath { get; set; } = "Updates";
|
||
|
|
public ReleaseChannel ReleaseChannel { get; set; } = ReleaseChannel.Stable;
|
||
|
|
}
|