-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientResource.cs
More file actions
26 lines (22 loc) · 1.27 KB
/
ClientResource.cs
File metadata and controls
26 lines (22 loc) · 1.27 KB
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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
namespace OnTopic.Editor.AspNetCore.Models.ClientResources {
/*============================================================================================================================
| CLASS: CLIENT RESOURCE
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Represents a resource that should be exposed to the client, such as a stylesheet or script.
/// </summary>
public abstract class ClientResource {
/*==========================================================================================================================
| URL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets or sets the URL associated with the client-side resource.
/// </summary>
public Uri Url { get; set; } = default!;
}
}