mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
12 lines
240 B
C#
12 lines
240 B
C#
using System;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class ApplicationVersion
|
|
{
|
|
public int ApplicationVersionId { get; set; }
|
|
public string Version { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
}
|
|
}
|