using System;
using System.Collections.Generic;
namespace API.DTOs
{
///
/// Represents a member of a Kavita server.
///
public class MemberDto
{
public int Id { get; init; }
public string Username { get; init; }
public string Email { get; init; }
public DateTime Created { get; init; }
public DateTime LastActive { get; init; }
public IEnumerable Libraries { get; init; }
public IEnumerable Roles { get; init; }
}
}