26 lines
961 B
C#
26 lines
961 B
C#
|
|
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 DateTime? UpdatedOn { 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; }
|
|||
|
|
}
|
|||
|
|
}
|