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

8 lines
166 B
C#
Raw Normal View History

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