forked from LumexUI/lumexui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserSlots.cs
More file actions
31 lines (25 loc) · 807 Bytes
/
UserSlots.cs
File metadata and controls
31 lines (25 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) LumexUI 2024
// LumexUI licenses this file to you under the MIT license
// See the license here https://github.com/LumexUI/lumexui/blob/main/LICENSE
using System.Diagnostics.CodeAnalysis;
using LumexUI.Common;
namespace LumexUI;
/// <summary>
/// Represents the set of customizable slots for the <see cref="LumexUser"/> component.
/// </summary>
[ExcludeFromCodeCoverage]
public class UserSlots : SlotBase
{
/// <summary>
/// Gets or sets the CSS class for the wrapper slot.
/// </summary>
public string? Wrapper { get; set; }
/// <summary>
/// Gets or sets the CSS class for the name slot.
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Gets or sets the CSS class for the description slot.
/// </summary>
public string? Description { get; set; }
}