Files
mapo-core/MP.AppAuth/DatabaseModels/UpdMan.cs
T
2021-09-17 19:42:03 +02:00

19 lines
455 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth
{
public partial class UpdMan
{
public string AppName { get; set; }
public string ManifestUrl { get; set; }
public bool? IsAuth { get; set; }
public string LocalRepo { get; set; }
public string PackName { get; set; }
public string LicenseKey { get; set; }
public string AppUrl { get; set; }
}
}