14 lines
221 B
Crystal
14 lines
221 B
Crystal
|
require "uuid"
|
||
|
|
||
|
class DNSManager::Storage::Token
|
||
|
include JSON::Serializable
|
||
|
|
||
|
property uuid : String
|
||
|
property domain : String
|
||
|
property rrid : UInt32
|
||
|
|
||
|
def initialize(@domain, @rrid)
|
||
|
@uuid = UUID.random.to_s
|
||
|
end
|
||
|
end
|