11 lines
248 B
C#
11 lines
248 B
C#
namespace DatabaseConnection.Model
|
|
{
|
|
public class Author
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Surname { get; set; }
|
|
public string? Birthdate { get; set; }
|
|
}
|
|
}
|