Changed default values of CatTitle, CatString, and AddedWho from null! to String.Empty to prevent potential null reference issues and ensure safer property initialization.
19 lines
424 B
C#
19 lines
424 B
C#
namespace DbFirst.Domain.Entities;
|
|
|
|
public partial class VwmyCatalog
|
|
{
|
|
public int Guid { get; set; }
|
|
|
|
public string CatTitle { get; set; } = String.Empty;
|
|
|
|
public string CatString { get; set; } = String.Empty;
|
|
|
|
public string AddedWho { get; set; } = String.Empty;
|
|
|
|
public DateTime AddedWhen { get; set; }
|
|
|
|
public string? ChangedWho { get; set; }
|
|
|
|
public DateTime? ChangedWhen { get; set; }
|
|
}
|