practicekea_backend/microservices/_layers/domain/Models2/LibraryContents.cs

28 lines
1.0 KiB
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
using System;
using System.Collections.Generic;
namespace OnlineAssessment.Domain.Models
{
public partial class LibraryContents
{
public LibraryContents()
{
LibraryContentsLanguages = new HashSet<LibraryContentsLanguages>();
LibraryContentsSubCategories = new HashSet<LibraryContentsSubCategories>();
LibraryContentsTags = new HashSet<LibraryContentsTags>();
}
public int Id { get; set; }
public byte[] Image { get; set; }
public DateTime? CreatedOn { get; set; }
public int? CreatedBy { get; set; }
public DateTime? UpdatedOn { get; set; }
public int? UpdatedBy { get; set; }
public bool? IsActive { get; set; }
public virtual ICollection<LibraryContentsLanguages> LibraryContentsLanguages { get; set; }
public virtual ICollection<LibraryContentsSubCategories> LibraryContentsSubCategories { get; set; }
public virtual ICollection<LibraryContentsTags> LibraryContentsTags { get; set; }
}
}