2024-08-21 16:50:14 +08:00

18 lines
592 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
{
public partial class ServerParametersInstance
{
public string ServerParametersId { get; set; } = null!;
public string? ParentId { get; set; }
public string Path { get; set; } = null!;
public DateTime CreateDate { get; set; }
public DateTime ModifiedDate { get; set; }
public int Timeout { get; set; }
public DateTime Expiration { get; set; }
public byte[] ParametersValues { get; set; } = null!;
}
}