28 lines
722 B
C#
28 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
[Table("UpdMan")]
|
|
public partial class UpdMan
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key]
|
|
public string AppName { get; set; }
|
|
|
|
public string AppUrl { get; set; }
|
|
public bool IsAuth { get; set; } = false;
|
|
public string LicenseKey { get; set; }
|
|
public string LocalRepo { get; set; }
|
|
public string ManifestUrl { get; set; }
|
|
public int Ordinal { get; set; } = 1;
|
|
public string PackName { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |