20 lines
No EOL
525 B
C#
20 lines
No EOL
525 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using API.Entities;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
/// <summary>
|
|
/// Represents a member of a Kavita server.
|
|
/// </summary>
|
|
public class MemberDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; }
|
|
public DateTime Created { get; set; }
|
|
public DateTime LastActive { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
//public IEnumerable<Library> Libraries { get; set; }
|
|
}
|
|
} |