17 lines
370 B
C#
17 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace RuleEngine.Models
|
|
{
|
|
public partial class AppVersion
|
|
{
|
|
public int Id { get; set; }
|
|
public string FileName { get; set; }
|
|
public int? Version { get; set; }
|
|
public string FolderPath { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
}
|
|
}
|