insight/src/Core/Insight.Domain/Models/Update.cs

7 lines
144 B
C#
Raw Normal View History

2023-09-21 22:10:55 +02:00
namespace Insight.Domain.Models;
public class UpdateResponse
2023-09-21 18:58:32 +02:00
{
2023-09-21 22:10:55 +02:00
public Version? Version { get; set; }
public Uri? Uri { get; set; }
2023-09-21 18:58:32 +02:00
}