20 lines
588 B
C#
20 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class LibraryContentsLanguages
|
|
{
|
|
public int Id { get; set; }
|
|
public int LibraryContentId { get; set; }
|
|
public int LanguageId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Link { get; set; }
|
|
public bool? IsActive { get; set; }
|
|
|
|
public virtual Languages Language { get; set; }
|
|
public virtual LibraryContents LibraryContent { get; set; }
|
|
}
|
|
}
|