CarTrackingRuleEngine/RuleEngine/Models/AppVersion.cs

17 lines
370 B
C#
Raw Permalink Normal View History

2025-05-15 10:01:56 +07:00
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; }
}
}