22 lines
534 B
C#
22 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class UpdMan
|
|
{
|
|
#region Public Properties
|
|
|
|
public string AppName { get; set; }
|
|
public string AppUrl { get; set; }
|
|
public bool? IsAuth { get; set; }
|
|
public string LicenseKey { get; set; }
|
|
public string LocalRepo { get; set; }
|
|
public string ManifestUrl { get; set; }
|
|
public string PackName { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |