mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-20 13:58:49 -04:00
11 lines
190 B
C#
11 lines
190 B
C#
using System;
|
|
|
|
namespace WowUp.Common.Models
|
|
{
|
|
public class CurrentVersion
|
|
{
|
|
public string Version { get; set; }
|
|
public DateTime PublishedAt { get; set; }
|
|
}
|
|
}
|