Class Book
Inherited Members
Namespace: Volo.Abp.TestApp.Domain
Assembly: Volo.Abp.EntityFrameworkCore.Tests.dll
Syntax
public class Book : Entity<Guid>, IEntity<Guid>, IEntity, ISoftDelete
Constructors
Book(Guid, Guid, string)
Declaration
public Book(Guid authorId, Guid id, string title)
Parameters
Type | Name | Description |
---|---|---|
Guid | authorId | |
Guid | id | |
string | title |
Properties
AuthorId
Declaration
public Guid AuthorId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
IsDeleted
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
bool |
Title
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |