16 lines
455 B
C#
16 lines
455 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Marco.Pms.Model.MongoDBModels.Utility
|
|
{
|
|
public class S3DeletionObject
|
|
{
|
|
[BsonId]
|
|
[BsonRepresentation(BsonType.String)]
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public string BucketName { get; set; } = string.Empty;
|
|
public string Key { get; set; } = string.Empty;
|
|
public bool Deleted { get; set; } = false;
|
|
}
|
|
}
|