mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 06:04:37 -04:00
20 lines
539 B
C#
20 lines
539 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 IEnumerable<LibraryDto> Libraries { get; set; }
|
|
public IEnumerable<string> Roles { get; set; }
|
|
}
|
|
} |