mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-01 04:25:55 +00:00
10 lines
185 B
C#
10 lines
185 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NzbDrone.Web.Models
|
|||
|
{
|
|||
|
public class FooterModel
|
|||
|
{
|
|||
|
public Version Version { get; set; }
|
|||
|
public DateTime BuildTime { get; set; }
|
|||
|
}
|
|||
|
}
|