2024-05-28 07:02:35 +03:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Mirea.Api.Endpoint.Common.Attributes;
|
|
|
|
|
|
2024-12-18 07:30:23 +03:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = false)]
|
2024-05-28 07:02:35 +03:00
|
|
|
|
public class MaintenanceModeIgnoreAttribute : Attribute;
|